File related
Last update: 7/2/2024, 5:14:58 PM
Delete all files of a certain age - e.g. more than one day old:
find . -type f -mtime +1 -delete
Set permissions on all files
find . -type f -exec chmod 666 {} +
Find empty files
find -maxdepth 1 -size 0 -print
Delete empty files
find -maxdepth 1 -size 0 -delete
Count files in directory
ls | wc -l